Aquí está mi código, usé el complemento react-quill
import React, { Component } from "react"; import ReactQuill from "react-quill"; class Editor extends Component { constructor(props) { super(props); this.state = { text: "" }; } modules = { // #3 Add "image" to the toolbar toolbar: [["bold", "italic"]] }; formats = [ "header", "bold", "italic", "underline", "strike", "blockquote", "list", "bullet", "indent", "link" ]; render() { return ( <ReactQuill theme="snow" modules={this.modules} formats={this.formats} value={this.state.text} > <div className="my-editing-area" /> </ReactQuill> ); } } export default Editor;el mismo código que funciona en mi otro proyecto y sus versiones mencionadas aquí no pueden encontrar el problema. incluso no estoy usando la opción de imagen en el editor de pluma.
reaccionar 16.6.0 reaccionar-dom 16.6.0 reaccionar-quill 1.3.1 reaccionar-guiones 2.0.3